:root {
    --purple: #a259ff;
    --dark-bg: #0d1b2a;
    --teal-bg: #1b263b;
    --sand: #e9d8a6;
    --text-light: #ffffff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.hero {
    background-color: var(--dark-bg);
    background-image: url("assets/hero-bg-waves.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0 0 40px 0;
}

.navbar a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: bold;
    text-transform: uppercase;
}

.title {
    font-size: 64px;
    color: var(--purple);
    text-shadow: 0 0 10px var(--purple), 0 0 20px var(--purple);
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: var(--purple);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #8b3dff;
}

.feature-section {
    background-color: var(--teal-bg);
    padding: 60px 20px;
    text-align: center;
}

.crabby-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.crabby-header h2 {
    font-size: 36px;
}

.crabby-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.screenshot {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.features img {
    width: 24px;
    height: 24px;
}

footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}
